home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / fcfgw40s.zip / FILECFGD.H < prev    next >
C/C++ Source or Header  |  1996-04-20  |  1KB  |  49 lines

  1. // FileCFGDlg.h : header file
  2. //
  3. #include "progdlg.h"
  4. #include "proboard.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CFileCFGDlg dialog
  7.  
  8. class CFileCFGDlg : public CDialog
  9. {
  10. // Construction
  11. public:
  12.     CFileCFGDlg(CWnd* pParent = NULL);    // standard constructor
  13.  
  14.     // ProBoard system path
  15.     char m_SysPath[80];
  16.  
  17.     // create index for given area
  18.     void MakeIndex(ushort, TFileArea&, CFile&);
  19.  
  20. // Dialog Data
  21.     //{{AFX_DATA(CFileCFGDlg)
  22.     enum { IDD = IDD_FILECFG_DIALOG };
  23.     //}}AFX_DATA
  24.  
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CFileCFGDlg)
  27.     protected:
  28.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. protected:
  33.     HICON m_hIcon;
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CFileCFGDlg)
  37.     virtual BOOL OnInitDialog();
  38.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  39.     afx_msg void OnDestroy();
  40.     afx_msg void OnPaint();
  41.     afx_msg HCURSOR OnQueryDragIcon();
  42.     afx_msg void OnButtonExit();
  43.     afx_msg void OnButtonReindex();
  44.     afx_msg void OnButtonFileAreas();
  45.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.